home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
s
/
ep_voice1-toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
197b
|
18 lines
/* EaglePlayer - toggles Voice1 */
address 'rexx_EP'
options results
status G vo1
if result == "no" then do
voice1 yes
say "Voice 1 now on"
end
else do
voice1 no
say "Voice 1 now off"
end